home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19971216-19980424 / 000116_news@newsmaster….columbia.edu _Fri Jan 23 15:11:16 1998.msg < prev    next >
Internet Message Format  |  1998-04-22  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA05961
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 23 Jan 1998 15:11:15 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id PAA05777
  7.     for kermit.misc@watsun; Fri, 23 Jan 1998 15:11:13 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: need file transfer info
  12. Date: 23 Jan 1998 20:11:12 GMT
  13. Organization: Columbia University
  14. Lines: 33
  15. Message-ID: <6aath0$137$1@apakabar.cc.columbia.edu>
  16. References: <6aao76$97n$1@mozart.jlc.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8293
  19.  
  20. In article <6aao76$97n$1@mozart.jlc.net>,
  21. Glenn Sherman <gsherman@remove_this.jlc.net> wrote:
  22. : I am trying to speed up a kermit file transfer between a Qnx comp. and
  23. : win95.  When using K95 to telnet (TCP/IP) into my Qnx computer, I want
  24. : to send a file back to the win95 computer.
  25. : I log into the Qnx computer and issue
  26. :   kermit -i -s filename
  27. : A 666624 byte file takes 1 min 52 secs to transfer ( 5952 CPS )
  28. : If I use ftp to send the same file, it takes 1.4 sec ( 455 kb/sec )
  29. : I tried  'set tcp recvbuf 25000'  &  'set tcp sendbuf 25000'  but no
  30. : changes.
  31. C-Kermit 6.0 on QNX is documented in the "Using C-Kermit" book that came
  32. with your copy of Kermit 95.  See the chapter on performance for details.
  33. Also see our FAQ:
  34.  
  35.   http://www.columbia.edu/kermit/faq.html
  36.   ftp://kermit.columbia.edu/kermit/faq.txt
  37.  
  38. If you want to see a dramatic difference without doing any reading first,
  39. try this:
  40.  
  41.   kermit -i -Q -s filename
  42.  
  43. (add the "-Q" (uppercase) command-line option; mnemonic Quick -- equivalent
  44. to the FAST command).  This increases the Kermit packet length and window
  45. size.  You should not need to mess with the TCP parameters except under
  46. exceptional circumstances.
  47.  
  48. - Frank